home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
c
/
jpl_c.zip
/
ISDIGIT.C
< prev
next >
Wrap
Text File
|
1986-05-18
|
640b
|
21 lines
/* 1.0 07-06-84 */
/************************************************************************
* Robert C. Tausworthe *
* Jet Propulsion Laboratory *
* Pasadena, CA 91009 1984 *
************************************************************************/
#include "defs.h"
#include "stdtyp.h"
#include "ctype.h"
/************************************************************************/
BOOL
isdigit(c) /* returns true if c is a digit, 0-9. */
/*----------------------------------------------------------------------*/
int c;
{
return (ISDIGIT(c));
}